home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / util / notify.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1994-08-01  |  3KB  |  76 lines

  1. #! /bin/sh
  2. #    $Header: /usr/people/sam/fax/util/RCS/notify.sh,v 1.8 1994/04/06 18:31:55 sam Rel $
  3. #
  4. # FlexFAX Facsimile Software
  5. #
  6. # Copyright (c) 1990, 1991, 1992, 1993, 1994 Sam Leffler
  7. # Copyright (c) 1991, 1992, 1993, 1994 Silicon Graphics, Inc.
  8. # Permission to use, copy, modify, distribute, and sell this software and 
  9. # its documentation for any purpose is hereby granted without fee, provided
  10. # that (i) the above copyright notices and this permission notice appear in
  11. # all copies of the software and related documentation, and (ii) the names of
  12. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  13. # publicity relating to the software without the specific, prior written
  14. # permission of Sam Leffler and Silicon Graphics.
  15. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  19. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  20. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  22. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  23. # OF THIS SOFTWARE.
  24. #
  25. SPOOL=/usr/spool/fax
  26. SENDMAIL=/usr/lib/sendmail
  27. #
  28. PS2FAX=bin/ps2fax
  29. TRANSCRIPT=bin/transcript
  30. AWKSCRIPT=bin/notify.awk
  31. TAR=tar
  32. AWK=nawk
  33. ENCODE=uuencode
  34. DECODE=uudecode
  35. COMPRESS=compress
  36. DECOMPRESS=zcat
  37. #
  38. # notify qfile why jobtime server-pid number [nextTry]
  39. #
  40. # Return mail to the submitter of a job when notification is needed.
  41. #
  42.  
  43. PATH=/bin:/usr/bin:
  44. test -d /usr/ucb  && PATH=$PATH:/usr/ucb        # Sun and others
  45. test -d /usr/bsd  && PATH=$PATH:/usr/bsd        # Silicon Graphics
  46. test -d /usr/5bin && PATH=/usr/5bin:$PATH:/usr/etc    # Sun and others
  47. test -d /usr/sbin && PATH=/usr/sbin:$PATH        # 4.4BSD-derived
  48.  
  49. if [ $# != 5 -a $# != 6 ]; then
  50.     echo "Usage: $0 qfile why jobtime pid number [nextTry]"
  51.     exit 1
  52. fi
  53. qfile=$1
  54. nextTry=${6:-'??:??'}
  55.  
  56. # look for an an awk: nawk, gawk, awk
  57. ($AWK '{}' </dev/null >/dev/null) 2>/dev/null ||
  58.     { AWK=gawk; ($AWK '{}' </dev/null >/dev/null) 2>/dev/null || AWK=awk; }
  59.  
  60. ($AWK -F: -f $AWKSCRIPT why=$2 jobTime=$3 pid=$4 canon=$5 nextTry=$nextTry \
  61.   ps2fax=$PS2FAX transcript=$TRANSCRIPT\
  62.   tar=$TAR \
  63.   encoder=$ENCODE decoder=$DECODE \
  64.   compressor=$COMPRESS decompressor=$DECOMPRESS \
  65.   $qfile || {
  66.       echo ""
  67.       echo "Sorry, there was a problem doing send notification;"
  68.       echo "something went wrong in the shell script $0."
  69.       echo ""
  70.       exit 1;
  71.   }
  72. ) | 2>&1 $SENDMAIL -t -ffax -oi
  73.